home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fbifile / friends.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  3.9 KB  |  143 lines

  1. VERSION 2.00
  2. Begin Form Friends 
  3.    Caption         =   "Friends and Family"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1005
  6.    ClientTop       =   1905
  7.    ClientWidth     =   7365
  8.    ControlBox      =   0   'False
  9.    Height          =   4425
  10.    Left            =   945
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form4"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   4020
  16.    ScaleWidth      =   7365
  17.    Top             =   1560
  18.    Width           =   7485
  19.    Begin TextBox Mother 
  20.       Height          =   285
  21.       Left            =   1680
  22.       TabIndex        =   5
  23.       Top             =   3480
  24.       Width           =   2505
  25.    End
  26.    Begin TextBox Father 
  27.       Height          =   285
  28.       Left            =   1680
  29.       TabIndex        =   4
  30.       Top             =   3000
  31.       Width           =   2505
  32.    End
  33.    Begin CommandButton Command2 
  34.       Cancel          =   -1  'True
  35.       Caption         =   "Quit"
  36.       Height          =   495
  37.       Left            =   5640
  38.       TabIndex        =   10
  39.       Top             =   2400
  40.       Width           =   1575
  41.    End
  42.    Begin TextBox Friend3 
  43.       Height          =   285
  44.       Left            =   1680
  45.       TabIndex        =   3
  46.       Top             =   1800
  47.       Width           =   2505
  48.    End
  49.    Begin TextBox Friend2 
  50.       Height          =   285
  51.       Left            =   1680
  52.       TabIndex        =   2
  53.       Top             =   1320
  54.       Width           =   2505
  55.    End
  56.    Begin CommandButton Command1 
  57.       Caption         =   "Continue"
  58.       Height          =   495
  59.       Left            =   5640
  60.       TabIndex        =   6
  61.       Top             =   1080
  62.       Width           =   1575
  63.    End
  64.    Begin TextBox Friend1 
  65.       Height          =   285
  66.       Left            =   1680
  67.       TabIndex        =   1
  68.       Top             =   840
  69.       Width           =   2505
  70.    End
  71.    Begin Label Label6 
  72.       Caption         =   "Mother"
  73.       Height          =   255
  74.       Left            =   600
  75.       TabIndex        =   12
  76.       Top             =   3480
  77.       Width           =   735
  78.    End
  79.    Begin Label Label5 
  80.       Caption         =   "Father"
  81.       Height          =   255
  82.       Left            =   600
  83.       TabIndex        =   11
  84.       Top             =   3000
  85.       Width           =   735
  86.    End
  87.    Begin Label Label7 
  88.       Caption         =   "List you parent's first names"
  89.       Height          =   255
  90.       Left            =   1680
  91.       TabIndex        =   13
  92.       Top             =   2520
  93.       Width           =   2535
  94.    End
  95.    Begin Label Label4 
  96.       Caption         =   "Friend #3"
  97.       Height          =   255
  98.       Left            =   600
  99.       TabIndex        =   9
  100.       Top             =   1800
  101.       Width           =   975
  102.    End
  103.    Begin Label Label3 
  104.       Caption         =   "Friend #2"
  105.       Height          =   255
  106.       Left            =   600
  107.       TabIndex        =   8
  108.       Top             =   1320
  109.       Width           =   975
  110.    End
  111.    Begin Label Label2 
  112.       Caption         =   "Friend #1"
  113.       Height          =   255
  114.       Left            =   600
  115.       TabIndex        =   7
  116.       Top             =   840
  117.       Width           =   975
  118.    End
  119.    Begin Label Label1 
  120.       Caption         =   "List three friends (first name only)"
  121.       Height          =   255
  122.       Left            =   1680
  123.       TabIndex        =   0
  124.       Top             =   360
  125.       Width           =   3135
  126.    End
  127. Sub command1_click ()
  128.     friends.Hide
  129.     Preferences.Show
  130. End Sub
  131. Sub Command2_Click ()
  132.     End
  133. End Sub
  134. Sub Form_Activate ()
  135.     i% = sndplaysound("friends.wav", 1)
  136.     friend1.text = ""
  137.     friend2.text = ""
  138.     friend3.text = ""
  139.     father.text = ""
  140.     mother.text = ""
  141.     friend1.SetFocus
  142. End Sub
  143.